home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cobra Utilities for Doom & Doom II
/
Cobra Utilities For Doom & Doom II - Disc 2.iso
/
files
/
program
/
dmtex09b
/
doomtex
/
doomtex.bat
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
DOS Batch File
|
1994-07-22
|
304 b
|
12 lines
@echo off
rem %1 is picture, sprite, patch or flat
if not exist bin\%1.wad goto usage
if not exist %2.gif goto usage
copy bin\%1.wad temp.wad > nul
dmgraph %1 -s %2.gif -f temp.wad
wad2lmp temp.wad %2.lmp
del temp.wad
goto end
:usage
echo Usage: doomtex picture/sprite/patch/flat giffile
:end